home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 2 / Gold Medal Software Volume 2 (Gold Medal) (1994).iso / netutils / lanlog.arj / REPTEG02.BAT < prev    next >
DOS Batch File  |  1993-08-01  |  2KB  |  48 lines

  1. ECHO OFF
  2. CLS
  3. rem     This BAT file provides an example use of LANLOG's report
  4. rem     generation utility LLREPORT.COM.
  5. rem
  6. rem           Title: Report meter files in directory creating .tot file
  7. rem     Description: Runs LLREPORT in the current directory passing it
  8. rem                  the wildcard *.MET and the command line option
  9. rem                  /TOT, LLREPORT produces LANLOG.TOT file.
  10.  
  11. rem     Inform user of actions.
  12.  
  13. :INST
  14.  
  15. ECHO    ╔══════════════════════════════════════════════════════╗
  16. ECHO    ║    REPORTING METER FILES AND GENERATING LANLOG.TOT   ║
  17. ECHO    ╠══════════════════════════════════════════════════════╣
  18. ECHO    ║                                                      ║
  19. ECHO    ║    This BATCH file generates a report of all meter   ║
  20. ECHO    ║    files in the current directory and creates a      ║
  21. ECHO    ║    total file LANLOG.TOT. To pause report production ║
  22. ECHO    ║    press the space bar, to halt press any other key. ║
  23. ECHO    ║    Press {Cntrl-C} to abort this report now.         ║
  24. ECHO    ║                                                      ║
  25. ECHO    ║   {Cntrl-C} = terminate, any other key = continue    ║
  26. ECHO    ║                                                      ║
  27. ECHO    ╚══════════════════════════════════════════════════════╝
  28.  
  29. rem     get user response
  30.  
  31. PAUSE
  32.  
  33. rem     Run the LLREPORT.COM file
  34.  
  35. LLREPORT *.MET /TOT
  36.  
  37. rem     LLREPORT will report the contents of any meter files to the
  38. rem     screen and concatenate the information into a total file
  39. rem     LANLOG.TOT. This contains a summation of all other meter files
  40.  
  41. goto QUIT
  42.  
  43. rem     The End
  44.  
  45. :QUIT
  46.  
  47. ECHO ON
  48.